home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
VQTFINFO.S
< prev
next >
Wrap
Text File
|
1993-03-26
|
2KB
|
66 lines
;*========================================================================
;* VDIFAST Public Domain VDI bindings.
;*========================================================================
;*------------------------------------------------------------------------
;* Inquire font information.
;*------------------------------------------------------------------------
globl _vqt_fontinfo
_vqt_fontinfo:
; .cargs #8,handle.w,minade.l,maxade.l,dist.l,maxw.l,effects.l
handle = 8
minade = 10
maxade = 14
dist = 18
maxw = 22
effects = 26
link a6,#-24 ;* Allocate intout[2], ptsout[5].
; VContrl #131
move.w handle(a6),-(sp) ; contrl[6]
clr.l -(sp) ; contrl[5,4]
clr.l -(sp) ; contrl[3,2]
clr.w -(sp) ; contrl[1]
move.w #131,-(sp) ; contrl[0]
pea -20(a6) ;* -> ptsout
pea -24(a6) ;* -> intout
subq.l #8,sp ;* -> ptsin, intin
pea 16(sp) ;* -> contrl
move.l sp,d1
jsr vditrap
lea -24(a6),a0 ;* Point to intout.
move.l minade(a6),a1 ;* Return minADE
move.w (a0)+,(a1) ;* from intout[0].
move.l maxade(a6),a1 ;* Return maxADE
move.w (a0)+,(a1) ;* from, intout[1].
move.l maxw(a6),a1 ;* Return maxwidth
move.w (a0)+,(a1) ;* from ptsout[0].
move.l a2,d1 ;* Save a2 for Laser C compatibility.
move.l dist(a6),a1 ;* Pointer to distance
move.l effects(a6),a2 ;* Pointer to effects
move.w (a0)+,(a1)+ ;* dist[0] = ptsout[1]
move.w (a0)+,(a2)+ ;* eff[0] = ptsout[2]
move.w (a0)+,(a1)+ ;* dist[1] = ptsout[3]
move.w (a0)+,(a2)+ ;* eff[1] = ptsout[4]
move.w (a0)+,(a1)+ ;* dist[2] = ptsout[5]
move.w (a0)+,(a2)+ ;* eff[2] = ptsout[6]
move.w (a0)+,(a1)+ ;* dist[3] = ptsout[7]
tst.w (a0)+ ;* notused - pstout[8]
move.w (a0),(a1) ;* dist[4] = ptsout[9]
move.l d1,a2 ;* Restore a2.
unlk a6
rts
end